[Introduction to the example]
[Screenshot of the example]
[Core code]SDK_1418B01SIM868M32_EAT├── SIM868M32.bat
├── build
│ ├── Makefile
│ ├── app_build.mak
│ ├── option.mak
│ ├── user.mak
│ └── winmake
│ ├── appgen.exe
│ ├── cmp.exe
│ ├── cp.exe
│ ├── diff.exe
│ ├── gdate.exe
│ ├── gecho.exe
│ ├── ginstall.exe
│ ├── grep.exe
│ ├── make.exe
│ ├── mv.exe
│ ├── patch.exe
│ ├── pwd.exe
│ ├── rm.exe
│ ├── upx.exe
│ └── zip.exe
├── core
│ ├── SIM868M32_EAT.cfg
│ ├── SIM868M32_EMBEDDEDAT
│ │ ├── 1418B01SIM868M32_EAT.cfg
│ │ ├── BPLGUInfoCustomAppSrcP_MT6261_S00_1418B01SIM868M32_EAT
│ │ ├── COREAPI
│ │ ├── EXT_BOOTLOADER
│ │ ├── ROM
│ │ ├── ROM_VIVA
│ │ ├── SIM868M32_EAT.cfg
│ │ ├── SIM868M32_EAT_BOOTLOADER.bin
│ │ ├── SIM868M32_EAT_PCB01_gprs_MT6261_S00.elf
│ │ ├── SIM868M32_EAT_PCB01_gprs_MT6261_S00.sym
│ │ ├── SIM868M32_EAT_PCB01_gprs_MT6261_S00_limit.sym
│ │ ├── SIM868M32_EAT_core_only.cfg
│ │ ├── VIVA
│ │ ├── app
│ │ └── appnull
│ ├── core.lib
│ ├── inc
│ │ ├── app_interface.h
│ │ ├── eat_audio.h
│ │ ├── eat_clib_define.h
│ │ ├── eat_flash.h
│ │ ├── eat_fs.h
│ │ ├── eat_fs_errcode.h
│ │ ├── eat_fs_type.h
│ │ ├── eat_gps.h
│ │ ├── eat_interface.h
│ │ ├── eat_mem.h
│ │ ├── eat_modem.h
│ │ ├── eat_network.h
│ │ ├── eat_nvram.h
│ │ ├── eat_other.h
│ │ ├── eat_periphery.h
│ │ ├── eat_sim.h
│ │ ├── eat_soft_sim.h
│ │ ├── eat_timer.h
│ │ ├── eat_type.h
│ │ └── eat_uart.h
│ └── scat_SIM868M32.txt
├── demo
│ ├── adc
│ │ ├── Makefile
│ │ ├── app_demo_adc.c
│ │ ├── app_demo_adc.h
│ │ └── main.c
│ ├── audio
│ │ ├── Makefile
│ │ ├── app_demo_audio.c
│ │ └── audio_resource.c
│ ├── flash
│ │ ├── Makefile
│ │ ├── app.h
│ │ └── app_demo_flash.c
│ ├── fs
│ │ ├── Makefile
│ │ ├── app_demo_fs.c
│ │ └── main.c
│ ├── ftp
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_ftp.c
│ │ ├── app_demo_ftp.h
│ │ ├── main.c
│ │ └── makefile
│ ├── gpio
│ │ ├── Makefile
│ │ └── app_demo_gpio.c
│ ├── gps
│ │ ├── Makefile
│ │ └── app_demo_gps.c
│ ├── http
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_http.c
│ │ ├── app_demo_http.h
│ │ ├── main.c
│ │ └── makefile
│ ├── i2c
│ │ ├── Makefile
│ │ └── app_demo_i2c.c
│ ├── interrupt
│ │ ├── Makefile
│ │ └── app_demo_eint.c
│ ├── key
│ │ ├── Makefile
│ │ ├── app_demo_key_main.c
│ │ ├── key.c
│ │ └── key.h
│ ├── other
│ │ ├── app_demo_other.c
│ │ └── makefile
│ ├── pwm
│ │ ├── Makefile
│ │ └── app_demo_pwm.c
│ ├── sim
│ │ ├── app_demo_sim.c
│ │ └── makefile
│ ├── sms
│ │ ├── app_at_cmd_envelope.c
│ │ ├── app_at_cmd_envelope.h
│ │ ├── app_demo_sms.c
│ │ ├── app_sms_pdu_decode.c
│ │ ├── app_sms_pdu_decode.h
│ │ ├── main.c
│ │ └── makefile
│ ├── spi
│ │ ├── LcdDataFont.c
│ │ ├── LcdDataFont.h
│ │ ├── LcdDisplay.c
│ │ ├── LcdDisplay.h
│ │ ├── app_demo_spi.c
│ │ ├── lcd.c
│ │ ├── lcd.h
│ │ └── makefile
│ ├── system
│ │ ├── Makefile
│ │ └── app_demo_sys.c
│ ├── tcptest
│ │ ├── Makefile
│ │ └── app_demo_tcp.c
│ ├── timer
│ │ ├── Makefile
│ │ └── app_demo_timer.c
│ ├── uart
│ │ ├── Makefile
│ │ └── app_demo_uart.c
│ └── wmmp
│ ├── Makefile
│ ├── inc
│ │ ├── simcom_at_parser.h
│ │ ├── simcom_m2m_at_fun.h
│ │ ├── simcom_wmmp_nvram_define.h
│ │ ├── simcom_wmmp_sms.h
│ │ ├── simcom_wmmp_utility.h
│ │ ├── wmmp_api.h
│ │ ├── wmmp_interface.h
│ │ ├── wmmp_nvram_type.h
│ │ └── wmmp_typ.h
│ ├── main.c
│ ├── src
│ │ ├── simcom_wmmp_hdlr_ex.c
│ │ ├── simcom_wmmp_nvram.c
│ │ ├── simcom_wmmp_sms.c
│ │ └── simcom_wmmp_utility.c
│ └── wmmp30
│ ├── inc
│ │ ├── wmmp_3des.h
│ │ ├── wmmp_basic_type.h
│ │ ├── wmmp_crc.h
│ │ ├── wmmp_decode.h
│ │ ├── wmmp_encode.h
│ │ ├── wmmp_lib.h
│ │ ├── wmmp_md5.h
│ │ └── wmmp_tlv.h
│ └── src
│ ├── wmmp_3des.c
│ ├── wmmp_crc.c
│ ├── wmmp_decode.c
│ ├── wmmp_encode.c
│ ├── wmmp_lib.c
│ ├── wmmp_md5.c
│ └── wmmp_tlv.c
├── doc
│ ├── CN
│ │ ├── SIM868系列_Embedded AT_开发指导_V1.00.pdf
│ │ ├── SIM868系列_Embedded AT_睡眠说明_V1.00.pdf
│ │ ├── SIM868系列_Embedded AT_编译环境说明_V1.00.pdf
│ │ └── SIMCOM_EAT介绍.ppt
│ ├── EASY ACCESS to EMBEDDED AT.pptx
│ ├── EN
│ │ ├── SIM868 Series_Embedded AT_Compiling Environment_V1.00.pdf
│ │ ├── SIM868 Series_Embedded AT_Sleep_Application Note_V1.00.pdf
│ │ └── SIM868_Embedded AT_Application Note_1.00.pdf
│ └── SIM868_Embedded_AT_Programmer_Guide_V1.00.chm
└── src
36 directories, 163 files
评论